b1dfb2c7188f8178d4c436f467ea9e88a7975e69,subprojects/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/data/MavenDependencyKey.java,MavenDependencyKey,equals,#Object#,49

Before Change


        if (!artifactId.equals(that.artifactId)) {
            return false;
        }
        if (classifier != null ? !classifier.equals(that.classifier) : that.classifier != null) {
            return false;
        }
        if (type != null ? !type.equals(that.type) : that.type != null) {
            return false;
        }

        return true;
    }

    @Override

After Change


        }

        MavenDependencyKey that = (MavenDependencyKey) o;
        return Objects.equal(groupId, that.groupId)
            && Objects.equal(artifactId, that.artifactId)
            && Objects.equal(classifier, that.classifier)
            && Objects.equal(type, that.type);
    }

    @Override